home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / Shareware World / Comms & Internet / LinkConverter 1.1.2 / Dialog Director v0.7 / Examples / QuickTime.as < prev    next >
Encoding:
Text File  |  1998-01-12  |  376 b   |  10 lines  |  [TEXT/ToyS]

  1. open (choose file with prompt "Select a movie:" of type "MooV")
  2.  
  3. on open theMovie
  4.     set dlog to {size:[320, 220], name:"QuickTime Demo", style:movable dialog, contents:[¬
  5.         {class:push button, name:"OK", bounds:[250, 190, 310, 210]}, ¬
  6.         {class:movie controller, contents:theMovie, bounds:[10, 10, 210, 170], flags:16 + 2} ¬
  7.             ]}
  8.     
  9.     dd auto dialog dlog with grayscale
  10. end open